home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / dasv10_.arj / DIEHERO.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-13  |  341 b   |  19 lines

  1. // dice.lib function die_hero()
  2. #include <dos.h>
  3. #include <iostream.h>
  4. #include <stdlib.h>
  5.  
  6. int die_hero(int size,int time,int display)
  7. {
  8.     int diehero,i;
  9.  
  10.     for (i=1;i<=10;i++) {
  11.     diehero = 1 + rand() % size;
  12.     if (display == 0)
  13.         cout<<"?\b";
  14.     else if (display == 1)
  15.         cout<<diehero<<"\b";
  16.     delay(time);
  17.     }
  18. return diehero;
  19. }